home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Games / ms-0.07 / xms / Ms.h < prev    next >
C/C++ Source or Header  |  1995-06-26  |  951b  |  37 lines

  1. /* Ms.h - public header for MandelSpawn popup widget */
  2. /* Copyright (C) 1990-1993 Andreas Gustafsson */
  3.  
  4. #ifndef _Ms_h
  5. #define _Ms_h
  6.  
  7. #define XtRDouble     "Double"
  8.  
  9. #define XtNiteration_limit     "iteration_limit"
  10. #define XtNCenterX     "center_x"
  11. #define XtNCenterY     "center_y"
  12. #define XtNRange     "range"
  13. #define XtNInside     "inside"
  14. #define XtNCenterBox     "center_box"
  15. #define XtNCursor     "cursor"
  16. #define XtNMama        "mama"
  17. #define XtNJulia    "julia"
  18. #define XtNCX         "c_x"
  19. #define XtNCY         "c_y"
  20. #define XtNChunkWidth    "chunk_width"
  21. #define XtNChunkHeight    "chunk_height"
  22. #define XtNSony        "sony_bug_workaround"
  23. #define XtNCrosshairSize "crosshair_size"
  24. #define XtNInterior    "interior"
  25.  
  26. typedef struct _MsRec *MsWidget;
  27. typedef struct _MsClassRec *MsWidgetClass;
  28.  
  29. extern WidgetClass msWidgetClass;
  30.  
  31. /* public functions */
  32. void Draw();
  33. struct static_job_info GetJobInfo();
  34. void ZoomIn(), WindowStats(); /* these are used by menu choices in menu.c */
  35.  
  36. #endif /* _Ms_h */
  37.